home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / temacd / rapidphp / rapidphp7.exe / {app} / templates / PHP / Hello World.php < prev   
Text File  |  2005-10-05  |  274b  |  19 lines

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5.  
  6. <head>
  7.   <title>Hello!</title>
  8. </head>
  9.  
  10. <body>
  11.  
  12. <?
  13. echo("Hello, World!" );
  14. ?>
  15.  
  16. </body>
  17.  
  18. </html>
  19.